home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / bstring.h < prev    next >
C/C++ Source or Header  |  1992-05-14  |  1KB  |  38 lines

  1. /*
  2.  * bstring.h --
  3.  *
  4.  *    Declarations of BSD library procedures for byte manipulation.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /sprite/src/lib/include/RCS/bstring.h,v 1.6 92/05/14 16:57:25 kupfer Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _BSTRING
  19. #define _BSTRING
  20.  
  21. #include <cfuncproto.h>
  22.  
  23. /* 
  24.  * Some of the int's below should be size_t.  Unfortunately, forcing 
  25.  * bstring.h to include <sys/types.h> can break old code that does its own 
  26.  * type declarations.
  27.  */
  28.  
  29. extern int    bcmp _ARGS_((_CONST _VoidPtr sourcePtr,
  30.                  _CONST _VoidPtr destPtr,
  31.                  /* size_t */ int numBytes));
  32. extern void    bcopy _ARGS_((_CONST _VoidPtr sourcePtr, _VoidPtr destPtr,
  33.                   /* size_t */ int numBytes));
  34. extern void    bzero _ARGS_((_VoidPtr destPtr, /* size_t */ int numBytes));
  35. extern int    ffs _ARGS_((int i));
  36.  
  37. #endif /* _BSTRING */
  38.